home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-01-01 | 959 b | 48 lines |
-
-
- CC=bcc
- OPT=-ml
-
- all : rawin.exe rawout.exe waveinfo.exe wave.exe rwave.exe vocinfo.exe \
- voice.exe sbinfo.exe speaker.exe
-
- rawin.exe : rawin.c sb.h sbc.obj
- $(CC) $(OPT) rawin.c sbc.obj
- del rawin.obj
-
- rawout.exe : rawout.c sb.h sbc.obj
- $(CC) $(OPT) rawout.c sbc.obj
- del rawout.obj
-
- waveinfo.exe : waveinfo.c
- $(CC) $(OPT) waveinfo.c
- del waveinfo.obj
-
- wave.exe : wave.c sb.h sbc.obj
- $(CC) $(OPT) wave.c sbc.obj
- del wave.obj
-
- rwave.exe : rwave.c sb.h sbc.obj
- $(CC) $(OPT) rwave.c sbc.obj
- del rwave.obj
-
- vocinfo.exe : vocinfo.c
- $(CC) $(OPT) vocinfo.c
- del vocinfo.obj
-
- voice.exe : voice.c sb.h sbc.obj
- $(CC) $(OPT) voice.c sbc.obj
- del voice.obj
-
- sbinfo.exe : sbinfo.c sb.h sbc.obj
- $(CC) $(OPT) sbinfo.c sbc.obj
- del sbinfo.obj
-
- speaker.exe : speaker.c
- $(CC) $(OPT) speaker.c
- del speaker.obj
-
- sbc.obj : sbc.c sb.h
- $(CC) $(OPT) -c sbc.c
-